home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / gnome-session.prerm < prev    next >
Encoding:
Text File  |  2009-04-08  |  515 b   |  19 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ "$1" = "remove" ] || [ "$1" = upgrade ]; then
  6.   update-alternatives --remove x-session-manager /usr/bin/gnome-session
  7.   update-alternatives --remove desktop-splash \
  8.     /usr/share/pixmaps/splash/gnome-splash.png
  9.   update-alternatives --remove desktop-splash \
  10.     /usr/share/pixmaps/splash/gnome-debian-splash.png
  11. fi
  12.  
  13. # Automatically added by dh_gconf
  14. if [ "$1" = remove ] || [ "$1" = upgrade ]; then
  15.     gconf-schemas --unregister gnome-session.schemas 
  16. fi
  17. # End automatically added section
  18.  
  19.